From: Tom Breton Date: Wed, 8 Dec 2010 03:36:01 +0000 (-0800) Subject: * lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to nil. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18^2~226 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=027b341e19f4c25b4173f141511abc57e42efcf3;p=emacs.git * lisp/cus-edit.el (custom-save-all): Bind print-length and print-level to nil. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ddc2f18bfe5..5d3b6b3d6ba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-12-08 Tom Breton + + * cus-edit.el (custom-save-all): + Bind print-length and print-level to nil. (Bug#7581) + 2010-12-08 Glenn Morris * mouse.el (mouse-menu-major-mode-map, mouse-menu-bar-map): diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index b815e31f31c..4046009a9a0 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4279,7 +4279,9 @@ if only the first line of the docstring is shown.")) (unless (eq major-mode 'emacs-lisp-mode) (emacs-lisp-mode)) - (let ((inhibit-read-only t)) + (let ((inhibit-read-only t) + (print-length nil) + (print-level nil)) (custom-save-variables) (custom-save-faces)) (let ((file-precious-flag t))